#ceci est un makefile
all: instrbase.exe

instrbase.exe: instrbase.obj
	cl instrbase.obj -o instrbase.exe

instrbase.obj: instrbase.cpp
	cl -c instrbase.cpp -o instrbase.obj

clean:
	del *.obj
	del *.exe